home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / imagemap.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  115 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10122);
  10.  script_bugtraq_id(739);
  11.  script_version ("$Revision: 1.25 $");
  12.  script_cve_id("CVE-1999-0951");
  13.  name["english"] = "imagemap.exe";
  14.  name["francais"] = "imagemap.exe";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The 'imagemap.exe' cgi is installed. This CGI 
  18. is vulnerable to a buffer overflow that will allow a remote user
  19. to execute arbitrary commands with the privileges of your httpd
  20. server (either nobody or root).
  21.  
  22. Solution : remove it from /cgi-bin.
  23.  
  24. Risk factor : High";
  25.  
  26.  
  27.  desc["francais"] = "Le cgi 'imagemap.exe' est installΘ. Un
  28. dΘpassement de buffer permet α n'importe qui de faire
  29. executer des commandes arbitraires au daemon http, avec 
  30. les privilΦges de celui-ci (root ou nobody). 
  31.  
  32. Solution : retirez-le de /cgi-bin.
  33.  
  34. Facteur de risque : SΘrieux";
  35.  
  36.  
  37.  script_description(english:desc["english"], francais:desc["francais"]);
  38.  
  39.  summary["english"] = "Overflows /cgi-bin/imagemap.exe";
  40.  summary["francais"] = "Overflow de /cgi-bin/imagemap.exe";
  41.  
  42.  script_summary(english:summary["english"], francais:summary["francais"]);
  43.  
  44.  script_category(ACT_MIXED_ATTACK); # mixed
  45.  
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  48.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  49.  family["english"] = "CGI abuses";
  50.  family["francais"] = "Abus de CGI";
  51.  script_family(english:family["english"], francais:family["francais"]);
  52.  script_dependencie("find_service.nes", "no404.nasl", "http_version.nasl", "www_fingerprinting_hmap.nasl");
  53.  script_require_ports("Services/www", 80);
  54.  exit(0);
  55. }
  56.  
  57. #
  58. # The script code starts here
  59. #
  60.  
  61. include("http_func.inc");
  62. include("http_keepalive.inc");
  63.  
  64. port = get_http_port(default:80);
  65.  
  66. if(!get_port_state(port))exit(0);
  67. sig = get_kb_item("www/hmap/" + port + "/description");
  68. if ( sig && "IIS" >!< sig ) exit(0);
  69.  
  70. flag = 0;
  71.  
  72. foreach dir (cgi_dirs())
  73. {
  74.  if(is_cgi_installed_ka(item:string(dir, "/imagemap.exe"), port:port))
  75.  { 
  76.   flag = 1;
  77.   directory = dir;
  78.   break;
  79.  }
  80. }
  81.  
  82. if(!flag)exit(0);
  83.  
  84. if(safe_checks())
  85.  report = "The 'imagemap.exe' cgi is installed. This CGI 
  86. may be vulnerable to a buffer overflow that will allow a remote user
  87. to execute arbitrary commands with the privileges of your httpd
  88. server (either nobody or root).
  89.  
  90. *** Nessus reports this vulnerability using only
  91. *** information that was gathered. Use caution
  92. *** when testing without safe checks enabled.
  93.  
  94. Solution : remove it from /cgi-bin.
  95.  
  96. Risk factor : High";
  97.  security_hole(port:port, data:report);
  98.  exit(0);
  99. }
  100.  
  101.  
  102. s = string(directory, "/imagemap.exe?", crap(5000));
  103. soc = http_open_socket(port);
  104. if(soc)
  105.  {
  106.  s = http_get(item:s, port:port);
  107.  send(socket:soc, data:s);
  108.  r = http_recv(socket:soc);
  109.  if(!r)security_hole(port);
  110.  http_close_socket(soc);
  111.  }
  112.  
  113.  
  114.